home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / 3dprograms / rayshade-4.0 / fixes / fix002 < prev    next >
Internet Message Format  |  1995-02-13  |  3KB

  1. From theseas!fs.Princeton.EDU!cek Thu, 28 Jan 93 01:29:50 EET
  2. Received: by kriton.UUCP (V1.16/Amiga)
  3.     id AA00000; Thu, 28 Jan 93 01:29:50 EET
  4. Received: by theseas.ntua.gr with UUCP; Wed, 27 Jan 93 20:41:10 +0200
  5. Received: from mcsun.EU.net by pythia.ics.forth.gr via ITEnet with SMTP;
  6.     id AA26162 (5.65c/FORTH-ICS-3.0-MHS-7.0); Wed, 27 Jan 1993 20:27:31 +0200
  7. Received: by mcsun.EU.net via EUnet
  8.     id AA05998 (5.65b/CWI-2.205); Wed, 27 Jan 1993 19:21:46 +0100
  9. Received: from Princeton.EDU by relay1.UU.NET with SMTP 
  10.     (5.61/UUNET-internet-primary) id AA21694; Wed, 27 Jan 93 13:13:47 -0500
  11. Received: from fs.Princeton.EDU by Princeton.EDU (5.65b/2.95/princeton)
  12.     id AA01691; Wed, 27 Jan 93 13:11:51 -0500
  13. Received: by fs.Princeton.EDU (4.1/1.105)
  14.     id AA12699; Wed, 27 Jan 93 13:11:49 EST
  15. Received: from faui45.informatik.uni-erlangen.de by fs.Princeton.EDU (4.1/1.105)
  16.     id AA12587; Wed, 27 Jan 93 13:10:56 EST
  17. Received: from faui43.informatik.uni-erlangen.de by uni-erlangen.de with SMTP;
  18.     id AA00850 (5.65c-5/7.3q-FAU); Wed, 27 Jan 1993 19:10:42 +0100
  19. Received: by immd4.informatik.uni-erlangen.de;
  20.     id AA20152 (5.65c-5/7.3m-FAU); Wed, 27 Jan 1993 19:10:39 +0100
  21. Message-Id: <199301271810.AA20152@faui43.informatik.uni-erlangen.de>
  22. Date: Wed, 27 Jan 93 19:10:38 MET
  23. X-Mailer: ELM [version 2.3 PL11]
  24. Errors-To: Princeton.EDU!cek
  25. Remailed-Date: Wed Jan 27 13:11:01 EST 1993
  26. From: "Michael Schroeder (Inf4 - hiwi)" <immd4.informatik.uni-erlangen.de!mlschroe>
  27. To: cs.Princeton.EDU!rayshade-users
  28. Subject: Bug in surface code
  29.  
  30.  
  31. Hello,
  32.  
  33. in SurfaceCreate() the component 'translucency' is not initialised
  34. to zero.  This bug can have some real strange effects.  I have a
  35. scenefile which works if I delete a 'translate 0 0 0' statement.
  36. It all depends on the malloc() implementation.
  37.  
  38. Michael.
  39.  
  40.  
  41. P.S.: If somebody is interested in testing my multi-csg code,
  42.       look in ftp.uni-erlangen.de:pub/graphics/rayshade/multicsg.
  43.       The patch fixes also a problem with the shadowcache.
  44.       I've sent this code to Craig and he will put it in
  45.       the next release...
  46.  
  47. ---------------------------------------------------------------
  48. Michael Schroeder    mlschroe@faui43.informatik.uni-erlangen.de
  49. main(a){while(a=~getchar())putchar(~a-1/(~(a|32)/13*2-11)*13);}
  50.       
  51.  
  52. *** surface.c.orig    Tue Jan 19 16:51:20 1993
  53. --- surface.c    Tue Jan 19 16:51:23 1993
  54. ***************
  55. *** 46,52 ****
  56.       stmp->srexp = stmp->stexp = DEFAULT_PHONGPOW;
  57.       stmp->statten = 1.;    /* No attenuation by default */
  58.   
  59. !     stmp->reflect = stmp->transp = 0.;
  60.   
  61.       stmp->noshadow = FALSE;
  62.   
  63. --- 46,52 ----
  64.       stmp->srexp = stmp->stexp = DEFAULT_PHONGPOW;
  65.       stmp->statten = 1.;    /* No attenuation by default */
  66.   
  67. !     stmp->reflect = stmp->transp = stmp->translucency = 0.;
  68.   
  69.       stmp->noshadow = FALSE;
  70.  
  71.  
  72. ----------
  73. Administrivia: rayshade-request@cs.princeton.edu
  74. Mailing list: rayshade-users@cs.princeton.edu
  75.  
  76.